Home
Ray
Articles
This Old House
Family History
Switch Examples
Switch Statement:
switch(dayOfWk) {
case "Sat" :
alert("Whoopee");
break;
case "Sun" :
alert("Whoopee");
break;
case "fri" :
alert("TGIF");
break;
default :
alert("Shoot me know!");
}